home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / AMUG / PROGRAMMING / Raven 1.2 Examples.sit / Raven 1.2 Examples / BoxPaint / Source / Precomp.pch++ < prev    next >
Text File  |  1997-02-07  |  736b  |  34 lines

  1. /*
  2.  *  File:       Precomp.pch++
  3.  *  Summary:       Precompiled header for BoxPaint.
  4.  *  Written by: Jesse Jones
  5.  *
  6.  *  Copyright ゥ 1997 Jesse Jones. All Rights Reserved.
  7.  *
  8.  *  Change History (most recent first):    
  9.  *
  10.  *         <->     2/07/97    JDJ        Created.
  11.  */
  12.  
  13. #if powerc
  14.     #pragma precompile_target ":Precomp PPC"
  15. #else
  16.     #pragma precompile_target ":Precomp 68K"
  17. #endif
  18.  
  19. #define BOXPAINT                    1
  20.  
  21. #define DEBUG                        1
  22. #define RELEASE                        0    // Set to 1 for release version of the app
  23. #define ASSERTS_THROW                0    // Set to 1 to have ASSERTS throw logic_error
  24.  
  25.  
  26. #define USES_QUICKDRAW_3D            1
  27.  
  28.  
  29. #define PRECOMPILE_MAC_HEADERS        1
  30. #define PRECOMPILE_RAVEN_HEADERS    0    // Can't precompile headers because ZTypes.h includes String!
  31.  
  32.  
  33. #include <AppHeader.h>
  34.